Saltar al contenido principal

Seating

Seating

menta supports the integration of seating at the time of ticket issuance, allowing each ticket to contain detailed information about the seat location within the event. To achieve this integration, it is necessary to send additional information with each ticket during the creation process. This information must be included within ticket.props.seating.

Integration Example

To create tickets with seating information, you should use the following endpoint:

Here is an example of how to notify menta of a ticket issuance with fictional data using cURL.
    curl -X POST 'https://api.mentatickets.com/v1/tickets'
-H 'Authorization: YOUR_API_KEY'
-H 'Content-Type: application/json'
--data-raw '[
{
"ticketOptionId": "0001",
"showId": "4726",
"externalReferenceEventId": "the-lion-king-broadway",
"buyer": "buyer@emaildomain.com",
"ticketId": "111",
"ticketAccess": {
"type": "URL",
"locator": "https://storage.googleapis.com/default_mentatickets-core/Captura%20de%20pantalla%202023-03-21%20a%20la(s)%2010.46.42.png",
"status": "LOCKED"
},
"props": {
"seating": {
"row": "A",
"seat": "12",
"section": "VIP",
"door": "North",
"image": "https://example.com/seating-image.png"
}
}
}
]'
Respuesta JSON
{
"status": 200,
"data": [{TICKETDATA}],
"errors": null
}

Seating Parameters

FieldData TypeDescriptionExample
rowStringRow where the seat is located."A"
seatStringSeat number."12"
sectionStringSection where the seat is located."VIP"
doorStringEntrance door corresponding to the seat."North"
imageStringURL of the image showing the seat location."https://example.com/seating-image.png"

For more detailed information about Ticket and Seating, please refer to the ticket data section.